Hi.
I know you can hide you password (in your .exe) with XOR encryption, but I have a question. I found out another simple way to hide it but I've never seen it before (I haven't really searched for it) so I quess it wont work. So my question is: Why doesn't this code work to hide the password, the password is hello and if I open my .exe with notepad, I can't find the string 'hello'.

PHP Code:
#include <iostream>

using namespace std;

int main()
{

    
int Password ];

    
Password ] = 104;
    
Password ] = 101;
    
Password ] = 108;
    
Password ] = 108;
    
Password ] = 111;

    
char Transfer ];

    
Transfer ] = Password ];
    
Transfer ] = Password ];
    
Transfer ] = Password ];
    
Transfer ] = Password ];
    
Transfer ] = Password ];

    
string Pass Transfer,
           
Input;

    
cout << "Input Password: ";
    
cin >> Input;

    if ( 
Input == Pass )
    {

        
cout << "Correct";
    }

    else
    {

        
cout << "Wrong";
    }

    
cin.ignore();
    
cin.get();